home *** CD-ROM | disk | FTP | other *** search
- Windows Registry Editor Version 5.00
-
-
-
- ; -----------------------------------------------------------------------------
- ; This file contains various registry tweak examples.
- ; Do only use if you know what you are doing.
- ;
- ; Don't forget to replace the 'DRIVE:\\DIRECTORY\\' with
- ; the correct location of your CopyWriter executable.
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code associate *.INI files to CopyWriter.
- ; The Explorer context menu will now show an Open menu item to open the
- ; selected *.INI file
-
- [HKEY_CLASSES_ROOT\.ini]
- @="CopyWriter INI-File"
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File]
- @="CopyWriter INI-File"
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File\DefaultIcon]
- @="shell32.dll,-152"
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell]
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\Open]
- @="&Open"
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\Open\Command]
- @="\"DRIVE:\\DIRECTORY\\CopyWriter.exe\" \"%1\""
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code create a CopyWriter INI-File in the Explorers File > New menu
-
- [HKEY_CLASSES_ROOT\.ini\ShellNew]
- "FileName"="CopyWriter INI-File"
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code will add an Print menu item to the Explorer context menu
- ; for *.INI files. Requires CopyWriter Version 2.01 or higher.
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\Print]
- @="&Print"
-
- [HKEY_CLASSES_ROOT\CopyWriter INI-File\Shell\print\Command]
- @="\"DRIVE:\\DIRECTORY\\CopyWriter.exe\" \"%1\" \"-p\""
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code will add custom file filters to CopyWriter's Open Dialog.
- ; Requires CopyWriter Version 2.01 or higher.
-
- [HKEY_CURRENT_USER\Software\PageUp\CopyWriter 2.0\Miscellaneous]
- "Custom_FileFilters"="|HTML Files (*.html, *.htm)|*.html; *.htm|INI Files (*.ini)|*.ini"
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code will remove custom file filters from CopyWriter's Open Dialog.
- ; Requires CopyWriter Version 2.01 or higher.
- .
- [HKEY_CURRENT_USER\Software\PageUp\CopyWriter 2.0\Miscellaneous]
- "Custom_FileFilters"=-
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code will set CopyWriter as default source viewer for Internet Explorer.
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor]
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\Editor Name]
- @="DRIVE:\\DIRECTORY\\CopyWriter.exe"
-
-
-
- ; -----------------------------------------------------------------------------
- ; This code will add a 'Print with CopyWriter' menu item to the Explorer
- ; context menu for all files (Like the 'Send to CopyWriter' menu item).
-
- [HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter]
-
- [HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter\Command]
- @="\"C:\\CopyWriter\\CopyWriter.exe\" \"%1\" \"-p\""
-
- [HKEY_CLASSES_ROOT\*\Shell\Send to CopyWriter]
-
- [HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter\Command]
- @="\"C:\\CopyWriter\\CopyWriter.exe\" \"%1\"
-
-
-
- ; -----------------------------------------------------------------------------
- ; Use this code to remove the 'Print with CopyWriter' menu item.
-
- [-HKEY_CLASSES_ROOT\*\Shell\Print with CopyWriter]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-